home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGSCAL / TPAINT2.LZH / CONVERT.DOC < prev    next >
Text File  |  1986-03-15  |  2KB  |  47 lines

  1.  
  2.  
  3.              (* ********************************************** *)
  4.              (*                                                *)
  5.              (*                 CONVERT.DOC                    *)
  6.              (*                                                *)
  7.              (*  (c) March 1986 Donald L. Pavia                *)
  8.              (*                 Department of Chemistry        *)
  9.              (*                 Western Washington University  *)
  10.              (*                 Bellingham, Washington 98225   *)
  11.              (*                                                *)
  12.              (* ********************************************** *)
  13.  
  14.  
  15.          CONVERT.COM is a program that will convert files from other paint
  16.       programs into a form that can be directly loaded into Turbo Pascal
  17.       programs. For instance, CONVERT will convert a picture file from
  18.       PC Paint to one that may be used by Turbo Paint or be called into any
  19.       Turbo Pascal Program by use of the procedures in  LOADSAVE.LIB.
  20.  
  21.          Since these files are stripped of their header you must set the
  22.       screen mode, background color, and palette BEFORE you load the picture.
  23.       Typically, this can be done with statements of the following type in
  24.       your code :
  25.                    GraphColorMode; GraphBackGround (1); Palette (2);
  26.  
  27.           The following offsets have been determined for use of the CONVERT
  28.       utility program.
  29.  
  30.                  PC Paint           .PIC file to Turbo      7
  31.                  Polaroid Palette   .GPH file to Turbo      8
  32.                  PC Pilot BSaver    .BSV file to Turbo      7
  33.                  BASIC BSAVE screen           to Turbo      7
  34.  
  35.       As I am not familiar with other programs, you will have to experiment.
  36.       The conversion must be done on 16,000+ byte files. Files from programs
  37.       using a compressed format for files (e.g., PC PaintBrush, Dr. Halo)
  38.       cannot be converted. Therefore, when using PC Paint be sure to save the
  39.       file in the uncompressed format.
  40.  
  41.          Don't forget that PC Paint and Polaroid Palette have screen capture
  42.       utilities. If you load these you can capture screens from many other
  43.       programs.
  44.  
  45.                                                   Donald L. Pavia, March 1986
  46.  
  47.